$(document).ready(function() {
	// Ajax ComboSelect Cidade/Estado
	jQuery("select[@name=estado]").change(function(){
		jQuery("select[@name=cidade]").html("<option value=\"procurando\">Carregando cidades...</option>");
		jQuery.post("/buscacidade.php",{estado : jQuery(this).val()}, 
			function(resposta){
				jQuery("select[@name=cidade]").html(resposta);
			}
		);
	});
});

