<!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>
  <title> new document </title>
  <script type="text/javascript">
  <!--
function bindBranch(){
var branchList = ["one","two","three","four"];
var osel = document.getElementById("ddlBranch").options;
for(var i = 0;i < branchList.length;i++){
osel.add(new Option(branchList[i],branchList[i]))
}
}
  //-->
  </script>
 </head> <body>
  <select id = "ddlBranch"></select>
  <input type="button" onclick="bindBranch()" value="create" />
 </body>
</html>自己参考下