function change_s2(p_id)
    {
    document.form1.s2.length = 0; 
    var id=p_id;
    var i;
    for (i=0;i < onecount; i++)
        {
        if (i== 0) 
               { 
                   document.form1.s2.options[document.form1.s2.length] = new Option("地级市", ""); 
				   //document.form1.s3.options[document.form1.s3.length] = new Option("县级市", ""); 
               }
            if (subcat[i][1] == id)
            { 
                document.form1.s2.options[document.form1.s2.length] = new Option(subcat[i][0], subcat[i][2]);
            }        
        }
    }    


function change_e2(p_id)
    {
    document.form1.e2.length = 0; 
    var id=p_id;
    var i;
    for (i=0;i < onecount; i++)
        {
        if (i== 0) 
               { 
                   document.form1.e2.options[document.form1.e2.length] = new Option("地级市", ""); 
				   //document.form1.e3.options[document.form1.e3.length] = new Option("县级市", ""); 
               }
            if (subcat[i][1] == id)
            { 
                document.form1.e2.options[document.form1.e2.length] = new Option(subcat[i][0], subcat[i][2]);
            }        
        }
    }    


