function addoption(){
    //提取省市的数组
    for(var i=0;i<pr.length;i++){
        shengshi[i]=pr[i].split("$");
    }
    var objSelect = document.myform.province; 
    var srtName=null;
    var strvalue=null;
    objSelect.options.length = 1;
    for(var j=0;j<shengshi.length;j++){
        strName=shengshi[j][0];
        strvalue=j+1;
        var objOption = new Option(strName,strvalue);
        objSelect.options.add( objOption );
    }
    document.myform.province.onclick = null;
}