function getXML(URL,CALLBACK){
if (URL.length >0){URL ="?"+URL;}
	$.ajax({type: "GET",url: URLCOMBOS+"combos.php"+URL,dataType: "text/html",success: CALLBACK});
}

function actionForm(idForm){
	document.getElementById(idForm).submit();
}
function fill_callback(respuesta,extra){
	$("#"+extra).html(respuesta);
	$("#"+extra+">option")[0].selected=true;
}

function fillMarcas(idCboTipo,idCboMarca){
var pag="";
var tipo =$("#"+idCboTipo).val();
	if (tipo!="-1"){
		$("#"+idCboMarca).empty();//marca
		pag="accion=marca&tipo="+tipo;
		getXML(pag,function(resp){fill_callback(resp,idCboMarca);});
	}
}

function fillModelos(idCboTipo,idCboMarca,idCboModelo){
var pag="";
var tipo =$("#"+idCboTipo).val();
var marca =$("#"+idCboMarca).val();
	if (marca!="-1"){
		$("#"+idCboModelo).empty();//modelo
		pag="accion=modelo&tipo="+tipo+"&marca="+marca;
		getXML(pag,function(resp){fill_callback(resp,idCboModelo);});
	}
}
