function doClear(theText){
    if (theText.value == theText.defaultValue){
        theText.value = "";
    }
}

function Check(theText1){
    if(theText1.value == ""){
        theText1.value == theText1.defaultValue;
        $(theText1).val('Search');
    }
}
