// JavaScript Document

function SearchBoxReset(obj) {
    // removes the content of the "Search box"
    var localValue,
    objValue;
    objValue = obj.value;
   
    if (objValue === "Find...") {
        obj.value = '';
    }
}