', { value: "0" }).html("City")); parameterLE = $(this).parent().find("input[type=radio]").val(); $("#FiltroLojaEscritorio").val(parameterLE); var ddl = $("#EstadoId"); ddl.empty(); ddl.append($('', { value: "0" }).html("Select state")); $.getJSON('/institucional/helpers/buscarlojasescritorioestado', { LojaEscritorio: parameterLE }, function (result) { $(result).each(function () { ddl.append($('', { value: this.Id }).html(this.Name)); }); }); }); $("#EstadoId").change(function () { var ddl = $('#CidadeId'); ddl.empty(); ddl.append($('', { value: "0" }).html("Select city")); if (parseInt($(this).val(), 10) > 0) { $.getJSON('/institucional/helpers/buscarlojasescritoriocidade', { idEstado: $(this).val(), LojaEscritorio: parameterLE }, function (result) { $(result).each(function () { ddl.append($('', { value: this.Id }).html(this.Name)); }); }); } }); link_tel_mobile(); });