You can have a reset button:
<input type='Reset' />
...but it will reset all your form elements. If the file text box is the only one, then there's no problem!
If there are other elements, you could put them in another form so they are unaffected by the 'Reset', but you will have to grab their values and stick them in hidden INPUTs in the first form before submitting (if you want to pass their values).
'hope that helps.
--Dave