function changeFunction(){
    if(event.srcElement.value="更多信息"){
        //code you want doing...
    }
}
<option onchange="changeFunction()">
.....

解决方案 »

  1.   

    先将更多信息的内容用样式表设display:none;然后用js处理下拉框的onchange事件,当改变时将更多信息的样式显示:
    document.getElementById("更多信息").style.dispaly="";就可以了
      

  2.   

    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /><script  type="text/javascript">
     function a(arg)
     {
     if(arg=="0")
     {
     document.getElementById("dis").style.display="block";
     }
     }
     
    </script>
    <title>无标题文档</title>
    </head><body>
    <label>
      <select name="select" id="select" onchange="a(this.options[selectedIndex].value)">
       <option value="1">选择选择</option>
       <option value="2">选择选择</option>
       <option value="3">选择选择</option>
        <option value="0">更多</option>
      </select>
    </label>
    <div id="dis" style="display:none">
        <input type="text" />
        <input type="text" />
        <input type="text" />
        <input type="text" />
    </div>
    <div id="a"></div></body>
    </html>
      

  3.   

    onchange