If the above does not work you could probably do it with JavaScript. Creat a function, and call it onLoad(). This is purly psyudo-code, as I am not a js expert by any means.
function clearText() {
document.formname.fieldname.value = "";
}
Something along those lines should clear the box, if it has a value, whenever the page is loaded into the browser.
However, if you have the form reshow on an error, then the feild will be blank at that time as well.
Hope this helps.