scusa, sto un po' fuso
codice:
<script type="text/javascript">
<!--
 function conferma(theForm) {
var segnato=false
for(var k=0;k<theForm.elements['Scelta'].length;k++){
if (theForm.elements['Scelta'][k].checked) segnato=true;
}
if(!segnato){
alert('Attenzione!.Non è stato selezionato alcun elemento');
theForm.elements['Scelta'][0].focus();
return false;
}
else
return true;
  }
//-->
</script>
mi ero dimenticato anche un [k]
adesso dovrebbe andare
ciao