怎么能让以下代码在火狐中使用?
<table width="142" height="108" border="0" cellpadding="0" cellspacing="0">
              <tr>
                <td height="23" colspan="2"></td>
              </tr>
              <tr>
                <td width="17">&nbsp;</td>
                <td width="121"><select name="select2"   style="letter-spacing:0pt; border-top:1px #B9D2F3  solid;border-left:1px #B9D2F3  solid; border-right: 1px #B9D2F3  solid; border-bottom: 1px #B9D2F3  solid;" onChange="javascript:weather.innerContent=this.options[selectedIndex].value;">
                  <%
 rs.open "select * from weather order by weather_id ",conn,1
 while not rs.eof 
 %>
                  <option value="<%=rs(1)%>"><%=rs(2)%></option>
                  <%rs.movenext
  wend
  rs.close%>
                </select></td>
              </tr>
              <tr>
                <td colspan="2"><table width="96%" border="0" cellspacing="0" cellpadding="0">
 <tr>
    <td height="4" colspan="4" align="center"></td>
    </tr>
  <tr>
    <td width="11%" height="48" align="center">       </td>
    <td width="79%" align="right">
      <div id="weather" align="left" style="height:60px; vertical-align:middle" >
                              <div align="left" style="line-height:150%;">
                                 <%
 rs.open "select * from weather order by weather_id ",conn,1
 if not rs.eof then 
     response.write rs(1)
  end if 
  rs.close%>                         </div>
                    </div>   </td>
    <td width="1%" align="right">
        </select> </td>
    <td width="9%" align="right">&nbsp;</td>
  </tr>
  
</table></td>
              </tr>
           <tr>
                <td colspan="2" height="11"></td>
                </tr>   
            </table>