// JavaScript Document

$(document).ready(function(){
	
	$("#c_estado").change(function(){
		
		if(this.value == 0){
			this.focus();
			$("#representantes").html("<span style='color:#133C8A;'>Nenhum estado selecionado.</span>");
		} else {
			$("#representantes").html("Carregando... <span style='color:#133C8A;'>" + this.value + "</span>");
			$.post("ListarRepresentantes.php",{estado:this.value},function(data){
				$("#representantes").html(data);
			});
		}
	
	});
	
});
