function Cambiar_Provincia(id)
{
	$.post(  
		"dinamico/cargar_localidades.php",  
			{id: id},  
			function(responseText){  
		 		$("#promociones").html(responseText);  
			},  
		"html"  
	); 	
}
