function LimpiarCampo(objText, strValue){
	if(objText.value == strValue) {
		objText.value = "";
	}
}

function emptyObjCmb(obj){
		for (i=0; i < obj.length; i++) {
	 		obj.options[i] = null;
	 	}
	 	obj.options.length = 0;
}

