function GetProvincias( idPais , buscador )
{
	LimpiarCombo( "cmbProvincias" ) ;
	LimpiarCombo( "cmbLocalidades" ) ;

	document.getElementById("cmbPais").disabled = "true" ;
	document.getElementById("divProvincias").innerHTML += '<img src="img/procesando.gif" width="16" height="16">' ;
	document.getElementById("divProvincias").disabled = 'true' ;

	xajax_GetProvincias( idPais , buscador );

}

function evaluaGetProvincias( resultado )
{
		document.getElementById("cmbPais").disabled = "" ;
		document.getElementById("divProvincias").innerHTML = resultado ;
		document.getElementById("divProvincias").disabled = '' ;
}

function GetLocalidades( idProvincia , buscador )
{
	
	LimpiarCombo( "cmbLocalidades" ) ;

	document.getElementById("cmbPais").disabled = "true" ;
	document.getElementById("cmbProvincias").disabled = "true" ;
	document.getElementById("divLocalidades").innerHTML += '<img src="img/procesando.gif" width="16" height="16">' ;
	document.getElementById("divLocalidades").disabled = 'true' ;

	xajax_GetLocalidades( idProvincia , buscador );

}

function evaluaGetLocalidades( resultado )
{
		document.getElementById("cmbPais").disabled = "" ;
		document.getElementById("cmbProvincias").disabled = "" ;
		document.getElementById("divLocalidades").innerHTML = resultado ;
		document.getElementById("divLocalidades").disabled = '' ;
}

// FUNCIONES GENERICAS
function LimpiarCombo( comboID )
{
    if (document.getElementById(comboID) != null ) 
    {
		if( document.getElementById(comboID).options.length>0 )
		{
			document.getElementById(comboID).options.length = 0
			document.getElementById(comboID).selectedIndex = 0;
//			document.getElementById(comboID).disabled = true;
			
			document.getElementById(comboID).options[0] = new Option("--Seleccione--","",true) ;
		}
    }
}
