Hi..
According to what you have written in your post, i'll suggest you to use Javascript for this purpose..
When someone clicks on the text box, the initial value in it gets empty (town in this case), and then the new value entered by the user will appear in the email.. See the code attached
Hope this helps..
<script language="javascript" type="text/javascript">
function when_obj_blur(frmObject,frmValue)
{
if(frmObject.value=="")
frmObject.value=frmValue;
}
</script>
<input type="text" name="Town" value="Town" onfocus="javascript:this.value='';" onblur="javascript:when_obj_blur(this,'Town')">
Reputation Points: 11
Solved Threads: 12
Junior Poster in Training
Offline 94 posts
since Dec 2008