This javascript clears the form field when the user clicks on it with the mouse.
forms
<script type
="text/javascript">
function clearMe(formfield){
if (formfield.defaultValue==formfield.value)
formfield.value = ""
}
</script>
<!--Just add this to your form field-->
onfocus="clearMe(this)"