function localidad (numero){

	$.ajax ({
			async:true,
			type: "POST",
			dataType: "html",
			contentType: "application/x-www-form-urlencoded;",
			url:"/funciones/eventos.php",
			data:"opcion=mapa&id_municipio="+numero,
			success: function (datos){
				$("#resultado_mapa").html (datos);
			},
			timeout: 40000,
			error: problemas
	});
	
}

function problemas (){
	alert ("Hubo problemas con el servidor. \nPongase en contacto con Miquel Torres");
}