// JavaScript Document
function clearText(campo){
	if (campo.defaultValue==campo.value)
	campo.value = ""
	campo.style.color = "#000000"
}

