// JavaScript Document
$().ready(function() {
	$("select[@name=listEstados]").change(function(){
		$('select[@name=listCidades]').html('<option value="sda">Procurando :::::::</option>');
		$.post('http://www.aguiasdoapostolado.com.br/a/exec/cidades.php', 
			{ estado : $(this).val() }, 
			function(resposta){
				
				$('select[@name=listCidades]').html(resposta);
			}
			
		);
	});
});
