$(document).ready(function() { var enumerations = {}; $.ajax({ url: "http://localhost:8080/api/nomenclatures/businessTypes" }).then(function(data) { enumerations = data; var $el = $("#companyType"); //$el.empty(); // remove old options $.each(data, function(index, obj) { $el.append(""); }); }); $("#companyType").change(function() { var selectedVal = $(this).find(':selected').val(); alert(JSON.stringify(enumerations[selectedVal-1])); var selectedObj = enumerations[selectedVal-1]; var $el = $("#predefined_services"); $el.empty(); $.each(selectedObj['serviceTypes'], function (index, obj) { $el.append( '
\n' + ' \n' + ' \n' + '
') }); }) });