allora, fai così:

<input type="reset" name="reset" value="Reset" onclick=resetForm(this.form);/>


function resetForm(frm) {
frm.getElementsByName('utente')[0].selectedIndex = -1;
return true;
}