function clearDefault(el) {
  if (el.defaultValue==el.value) { 
  	el.value = "";
	el.style.color =  '#000000';
  }
}
