为下拉列表赋值  industry为下拉列表ID   
   option = document.createElement("option");
   option.value = industry1;                                 //industry1值为1
   option.appendChild(document.createTextNode(industryname));//industryname值为JAVA
   industry.appendChild(option);                             //这行报错 :意外的调用了方法或属性访问industry1,industry都定义了不知道错在哪了