risponde che (document.Form1.Combo1.value) non è un oggetto o è nullo
codice:
<form name="form1">
<select name="Combo1" onchange="MiaFunz(document.Form1.Combo1.value);">
<option value="pluto">pippo</option>
<option value="pluto">pluto</option>
</select>
<div style="display:none;" id="n0"><input type="text" name="isola" size="20"></div>
<script>
function MiaFunz(Valore){
var ref = document.getElementById('n'+k);
if (valore=='pluto'){
ref.style.display=block;
}
else{
ref.style.display='none';
}
}
</script>
</form>