ciao a tutti ho scritto questo codice che a seconda della scelta nella select cambia i valori nella tabella ora il mio problema è che provandolo su firefox funziona su ie no cosa posso fare?

GRAZIE IN ANTICIPO

codice:
  <script>
function F1() {
    var a = document.getElementById("nome");    a.innerHTML = "VALORE";
	var b = document.getElementById("indirizzo"); b.innerHTML ="VALORE";
	var c = document.getElementById("indirizzo2");    c.innerHTML = "VALORE";
	var d = document.getElementById("telefono"); d.innerHTML ="VALORE";
	var e = document.getElementById("mail"); e.innerHTML ="VALORE";}

function F2() {
    	var a = document.getElementById("nome");    a.innerHTML = "VALORE";
	var b = document.getElementById("indirizzo"); b.innerHTML ="VALORE";
	var c = document.getElementById("indirizzo2");    c.innerHTML = "VALORE";
	var d = document.getElementById("telefono"); d.innerHTML ="VALORE";
	var e = document.getElementById("mail"); e.innerHTML ="VALORE";}




</script>
            


 </p>
<table width="249" border="1" cellpadding="1">
  <tr> 
    <td><div align="center">ADRESE</div></td>
  </tr>
  <tr> 
    <td><div align="center"> 
        <select size="1" name="type" class="form" onChange="JumpMenu(this)" style="font-size: 8 pt; font-family: Verdana">
          <option selected>- SCEGLI -</option>
          <option value="<input type="select onClick="F1()" ">F1</option>
          <option value="<input type="select onClick="F2()" ">F2</option>

        </select>
      </div></td>
  </tr>
  <tr> 
    <td><div align="center" id="nome"> </div></td>
  </tr>
  <tr> 
    <td><div align="center" id="indirizzo"> </div></td>
  </tr>
  <tr> 
    <td><div align="center" id="indirizzo2"> </div></td>
  </tr>
  <tr> 
    <td><div align="center" id="telefono"> </div></td>
  </tr>
  <tr> 
    <td> <div align="center" id="mail"> </div></td>
  </tr>
</table>




  

</p>