$(document).ready(function(){ $("select[name=idplano]").change(function() { //alert('chamou'); $("#opc").html('Carregando...'); $.post("opc.php", {tecido1:$(this).val()}, function(valor){ $("#opc").html(valor); } ) }) $("select[name=cod_estados]").change(function() { //alert('chamou'); $('#tt').hide(); $('#city').hide(); $("#cod_cidade").show(); //$("#opc").html('Carregando...'); $.post("opc.php", {tecido:$(this).val()}, function(valor){ $("#cod_cidade").html(valor); } ) }) })