ตรง
Code
<select name="select2" >
ให้เพิ่มเป็น
Code
<select name="select2" ONCHANGE="location = this.options[this.selectedIndex].value;">
ส่วนตรง
Code
theform.select2.options[1]=new Option('โยธา','โยธา'); //จะให้เลือกแล้ว link ไปเว็บของสาขา อะครับ
theform.select2.options[2]=new Option('เครื่องกล','เครื่องกล');
theform.select2.options[3]=new Option('ไฟฟ้า','ไฟฟ้า');
theform.select2.options[4]=new Option('อาหาร','อาหาร');
ก็เป็น
Code
theform.select2.options[1]=new Option('โยธา','url ที่ลิงค์ไป'); //จะให้เลือกแล้ว link ไปเว็บของสาขา อะครับ
theform.select2.options[2]=new Option('เครื่องกล','url ที่ลิงค์ไป');
theform.select2.options[3]=new Option('ไฟฟ้า','url ที่ลิงค์ไป');
theform.select2.options[4]=new Option('อาหาร','url ที่ลิงค์ไป');
ลองดูนะคับ