// JavaScript - Clear Input Box Field 

function clearField(htmlObject) {
   if (htmlObject != null) {
       htmlObject.value = "";
   }
}