//clears the cursor current field of default to accept user input

function clearDefault(el) {
  	if (el.defaultValue==el.value){
  		el.value = ""
  	}
}