/**
* Função que limpa os input text.
*/
function clearDefault(el){
  if (el.defaultValue==el.value) el.value = ""
}