﻿function SeleccionaProvincia( idProvincia )
{
	if( idProvincia == 24 )
	{
		document.getElementById("txtLocalidad").disabled = "true" ;
		document.getElementById("txtLocalidad").value = "" ;
	}
	else
	{
		document.getElementById("txtLocalidad").disabled = "" ;
	}
	
}

//valor por defecto es Option o null si no es necesario
//new Option("--Seleccione--","",true)
function LimpiarCombo( comboID , oValorPorDefecto )
{
 if (document.getElementById(comboID) != null ) 
 {
		if( document.getElementById(comboID).options.length>0 )
		{
			document.getElementById(comboID).options.length = 0
			document.getElementById(comboID).selectedIndex = 0;
			if( oValorPorDefecto != null )
			{
				document.getElementById(comboID).options[0] = oValorPorDefecto ;
			}
		}
 }
}



