<table width="75%" border="1">
    <tr> 
      <td width="29%">是否中层以上管理人员</td>
      <td width="24%"> 
        <input type="radio" name="radiobutton" value="1" checked onclick="if(this.checked==true)selectlist.disabled=false;">
        是
        <input type="radio" name="radiobutton" value="0" onclick="if(this.checked==true)selectlist.disabled=true;">
        否
</td>
      <td width="32%">技能工资套改标准</td>
      <td width="15%"> 
        <select name="selectlist">
          <option value="1">1</option>
          <option value="2">2</option>
        </select>
      </td>
    </tr>
</table>强烈注意:<select name="select">是错误的,不能命名为select(保留字)!