
<script type="text/javascript">
/*
Clear default form value script
*/

/*
Clear Form Values & replace them if not used.
*/

function clearText(thefield){
if (thefield.defaultValue==thefield.value)
thefield.value = ""
} 

function replaceText(thefield){
if (thefield.value=="")
thefield.value = thefield.defaultValue

</script>