<script> <br><br>function $(value) <BR>{ <BR> return document.getElementById(value); <BR>} <BR>function ch(s){ <BR> var p = new Array(0,1,2); <BR> p[0] = '大学'; <BR> p[1] = '高中'; <BR> p[2] = '初中'; <BR> if(s.value=='0'){ <BR> $('n2').options.length = 0; <BR> $('n2').options.add(new Option(p[0],p[0])); <BR> } <BR> if(s.value=='1'){ <BR> $('n2').options.length = 0; <BR> $('n2').options.add(new Option(p[1],p[1])); <BR> } <BR> if(s.value=='2'){ <BR> $('n2').options.length = 0; <BR> $('n2').options.add(new Option(p[2],p[2])); <BR> } <BR>} <BR></script>