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

