function fillcountry(){ addOption(document.drop_list.country, '6', 'خارج السعودية');addOption(document.drop_list.country, '5', 'السعودية');} function Selectstate(){ document.drop_list.state.disabled=false; removeAllOptions(document.drop_list.state);addOption(document.drop_list.state, '', 'أختر المنطقة', '');if(document.drop_list.country.value == '5'){addOption(document.drop_list.state,'82', 'منطقة الجوف');addOption(document.drop_list.state,'81', 'منطقة نجران');addOption(document.drop_list.state,'75', 'منطقةعسير');addOption(document.drop_list.state,'67', 'منطقة الرياض');addOption(document.drop_list.state,'68', 'منطقة مكة المكرمة');addOption(document.drop_list.state,'69', 'منطقة المدينة المنورة');addOption(document.drop_list.state,'70', 'المنطقة الشرقية');addOption(document.drop_list.state,'76', 'منطقة الباحة');addOption(document.drop_list.state,'73', 'منطقة القصيم');addOption(document.drop_list.state,'74', 'منطقة الحدودالشمالية');addOption(document.drop_list.state,'77', 'منطقة تبوك');addOption(document.drop_list.state,'78', 'منطقة حائل');addOption(document.drop_list.state,'80', 'منطقة جازان');}} function Selectdealer(){ document.drop_list.dealer.disabled=false; removeAllOptions(document.drop_list.dealer);addOption(document.drop_list.dealer, '', 'أختر المعرض', '');if(document.drop_list.state.value == '67'){}} function removeAllOptions(selectbox) { var i; for(i=selectbox.options.length-1;i>=0;i--) { //selectbox.options.remove(i); selectbox.remove(i); } } function addOption(selectbox, value, text ) { var optn = document.createElement("OPTION"); optn.text = text; optn.value = value; selectbox.options.add(optn); }