function pega_cidades(loc) {
	$("#cidade > option").replaceWith("<option>Carregando cidades...</option>");									
	$("#cidade").load("../lib/getCidades.php", { uf: $("#uf").val() }, function() {
		$("#cidade > option").each(function() {
		if($(this).val() == loc) { $(this).attr("selected","selected");	}
		});
		
		seta_municipio()																																					
																																			 
	});
}

function seta_municipio() {
	var str = "";
	$("#cidade option:selected").each(function () {
		str += $(this).text() + " ";
	 });
	$("#municipio").val(str);						
}

$(document).ready(function(){
  $(".fecha_pop_under").click(function(e){
		e.preventDefault();
		 $(".pop_under_bernard").fadeOut();
	});						
	
	$("#uf").change(function(){
		pega_cidades();
	});
	
	$("#cidade").change(function() {
		seta_municipio();
	});
	
});