你的数据不全这样
<SCRIPT>
//(c)2000 Webteacher Software, LLC
//http://www.webteacher.complatform=window.navigator.appVersion;
ie3=0;
if (platform.indexOf('MSIE 3')>0) {
   ie3=1;
}Fruit=new Array()
 Fruit[0]="apple";
 Fruit[1]="banana";
 
Vegetables=new Array()
 Vegetables[0]="carrot";
 
Meat=new Array()
 Meat[0]="chicken";
 Meat[1]="ham";apple=new Array()
apple[0]="111111";
apple[1]="112221";banana=new Array()
banana[0]="fff";carrot=new Array()
carrot[0]="aa";chicken=new Array()
chicken[0]="5555";ham=new Array()
ham[0]="sdfsdf";secondlist = new Array("a","b")
function setList(f) {
 if (ie3) {
    alert('Changable lists do not work with Internet Explorer 3');
    return;
 };
 secondlist=eval(f.list1.options[f.list1.selectedIndex].value);
 f.list2.options.length=0;
 for(i=0;i<secondlist.length;i++) {
  f.list2.options[i]=new Option(secondlist[i],secondlist[i]);
 };
  f.list2.selectedIndex=0;
};function setList2(f) {
 if (ie3) {
    alert('Changable lists do not work with Internet Explorer 3');
    return;
 };
 secondlist2=f.list2.options[f.list2.selectedIndex].value;
 f.list3.options.length=0;
 for(i=0;i<secondlist2.length;i++) {
  f.list3.options[i]=new Option("a","b");
 };
  f.list3.selectedIndex=0;
};</SCRIPT>
<body>
<FORM NAME="listsform">
  <SELECT NAME="list1" onChange="setList(form)">
    <OPTION VALUE="Fruit" SELECTED>Fruit</OPTION>
    <OPTION VALUE="Vegetables">Vegetables</OPTION>
    <OPTION VALUE="Meat">Meat</OPTION>
  </SELECT>
  <SELECT NAME="list2" onChange="setList2(form)">
    <OPTION>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</OPTION>
    <OPTION></OPTION>
    <OPTION></OPTION>
    <OPTION></OPTION>
    <OPTION></OPTION>
    <OPTION></OPTION>
    <OPTION></OPTION>
    <OPTION></OPTION>
    <OPTION></OPTION>
  </SELECT>
  <SELECT NAME="list3">
    <OPTION>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</OPTION>
    <OPTION></OPTION>
    <OPTION></OPTION>
    <OPTION></OPTION>
    <OPTION></OPTION>
    <OPTION></OPTION>
    <OPTION></OPTION>
    <OPTION></OPTION>
    <OPTION></OPTION>
  </SELECT>
</FORM>
</body>
</html>