Problema risolto:

<head>
<script type="text/javascript">
function checkBox(box) {
if (document.getElementById("ris_db").value=='01') {
if ((box.options [box.selectedIndex].value=='02') && !(confirm('Cambi il val in 02?'))) {
box.options .selectedIndex=0; }
}
}
</script>
</head>


<form method="POST" name="form1">
<input type="hidden" name="ris_db" id="ris_db" value="<%=objRS("Ris")%>">
...
<select name="ris_i" id="ris_i" onchange="checkBox(this)">
<option value="<%=objRS("Ris")%>" selected><%=objRS("Ris")%></option>
<option value="02">02</option>
</select>


P.S. Andrea, tutto il codice che mi avevi postato andava bene, mancava solo la "s " nelle varie parole option .


Grazie ancora !!!!