// JavaScript Document

function getCiudadesCombo(capa,provincia_id,type){
	var url = 'combos.php?type='+type+'&id='+provincia_id;

	new Ajax.Request(url, {
	  method: 'get',
	  onSuccess: function(transport) {
		$(capa).innerHTML = transport.responseText;
	  }
	});
}