JavaScript Disappear Text

Disappear Text

<script language="Javascript"> 
<!-- 
function doClear(theText) { if (theText.value == theText.defaultValue) { theText.value = "" } } 
//--> 
</script> 
<input type="text" size=15 value="Text" onFocus="doClear(this)">