When you set up a default value for a text box or text area in RSForm Pro users have to delete the default value manually.
If you want to remove the default value when users click in the text box or text area then add the following code to the fields “Additional attributes” section on the right when you select to edit the field.
onfocus="if(this.value == 'your_default_value') this.value ='';"
onblur="if(this.value == '') this.value='your_default_value'"
Replace “your_default_value” with your default value text.
Hope this helps
thanx, works great!