document.write("<select align=\"center\" size=\"1\" name=\"selectsubschool\" style=\"width:130 font-size: 9pt\" onChange = \"opennew(this)\";>");
document.write("<option selected value=\"Choose\">--分校、工作站--</option>");
document.write("<option value=\"index_shdd.php\">射洪分校</option>");
document.write("<option value=\"fenxiao.php\">蓬溪分校</option>");
document.write("<option value=\"fenxiao.php\">大英分校</option>");
document.write("<option value=\"fenxiao.php\">安居分校</option>");
document.write("</select>");
function opennew(selectname){
	var myindex=selectname.selectedIndex;
	if (myindex == 0){return;}
	window.open(selectname.options[myindex].value,null,"",true);
}