What you want to do is use the HTML5 attribute placeholder which lets you set a default value for your input box:
<input type="text" name="inputBox" placeholder="enter your text here">
This should achieve what you’re looking for. However, be careful because the placeholder attribute is not supported in Internet Explorer 9 and earlier versions.