 
function jsEliminaTextoCampo(campo,texto) {

   if (campo.value == texto){
      campo.value = '';
   }

}
