function doClear(theText) {
     if (theText.value == theText.defaultValue) {
         theText.value = ""
     }
 }
 
 function doUnClear(theText) {
     if (theText.value == "") {
         theText.value = "Search...."
     }
 }
 
 function doClear_make(theMake) {
     if (theMake.value == theMake.defaultValue) {
         theMake.value = ""
     }
 }
 
 function doUnClear_make(theMake) {
     if (theMake.value == "") {
         theMake.value = "Model to Add...."
     }
 }
 
 function doClear_model(theModel) {
     if (theModel.value == theModel.defaultValue) {
         theModel.value = ""
     }
 }
 
 function doUnClear_model(theModel) {
     if (theModel.value == "") {
         theModel.value = "Model to Add...."
     }
 }
