c_name = new Array( 0, 13, 157, 1, 14, 7, 145, 2, 11, 18, 4, 12, 15, 6, 3, 5, 140, 8, 9, 10, 17, 161, 16);


c_id = new Array( 'All', 'Agriculture', 'Art', 'Automobiles', 'Building', 'Computers', 'Education', 'Electrical engineering and electronics', 'Fashion', 'Finance', 'For the office', 'Furnishing', 'Heavy industry', 'Institutions and organizations', 'Insurances', 'Internet and communications', 'Law', 'Light industry', 'Media and advertisement', 'Medicine', 'Services', 'Sport', 'Tourism');




var sc_id = new Array();
var sc_name = new Array();

sc_id[0] = new Array("0");
sc_name[0] = new Array("Choose subcategory");

sc_id[13] = new Array(0, 101, 100, 99);
sc_name[13] = new Array("All", "Agricultural technics", "Distributors", "Growers");

sc_id[157] = new Array(0, 160, 158, 172, 159);
sc_name[157] = new Array("All", "Cinema and Theatre", "Galleries and artists", "literature", "Music");

sc_id[1] = new Array(0, 19, 24, 174, 22, 23, 21, 20, 26);
sc_name[1] = new Array("All", "Car sales", "Driver schools", "Motorcycles","New cars", "Rent - a - car", "Service stations", "Spare parts", "Trucks");

sc_id[14] = new Array(0, 106, 105, 107, 108, 109, 104);
sc_name[14] = new Array("All", "Construction companies", "Design and investigation", "Equipment and materials", "Heating and ventilation", "Real estates", "Third party construction supervision");

sc_id[7] = new Array(0, 60, 59);
sc_name[7] = new Array("All", "Hardware", "Software");

sc_id[2] = new Array(0, 28,173, 29, 30, 31);
sc_name[2] = new Array("All", "Audio and video technics", "Electrical materials", "Electronics", "Industrial equipment", "Services");

sc_id[11] = new Array(0, 90, 88, 89, 92, 91);
sc_name[11] = new Array("All", "Beauty salons", "Designers", "Fashion agencies", "Jewellery", "Shops");

sc_id[18] = new Array(0, 133, 137, 134, 136, 155);
sc_name[18] = new Array("All", "Banks", "Exchange bureaus", "Markets and brokers", "Pawnshops", "Leasing and loans");

sc_id[4] = new Array(0, 37, 36);
sc_name[4] = new Array("All", "Materials and stationary", "Office technics");

sc_id[12] = new Array(0, 95, 97, 94, 96);
sc_name[12] = new Array("All", "Furniture", "Grassing", "Interior", "Technics");

sc_id[15] = new Array(0, 115, 112, 113, 114);
sc_name[15] = new Array("All", "Chemical industry", "Energetics", "Machine building", "Metallurgy");

sc_id[6] = new Array(0, 46, 47, 52, 57, 48, 54, 51, 49, 53, 50, 55);
sc_name[6] = new Array("All", "Agencies", "Associations", "Diplomatic organizations", "Foundations", "Government", "Healt funds", "Pensionary funds", "Political organizations", "Religious organizations", "Tax administration", "Territorial administration");

sc_id[3] = new Array(0, 34, 33);
sc_name[3] = new Array("All", "Insurance brokers", "Insurance companies");

sc_id[5] = new Array(0, 168, 43, 45, 41, 44);
sc_name[5] = new Array("All", "E-Shops", "Internet services", "Phones and faxes", "Providers", "System integration");

sc_id[140] = new Array(0, 143, 141, 142);
sc_name[140] = new Array("All", "Law  information", "Lawyers", "Notaries");

sc_id[8] = new Array(0, 62, 169, 66, 65, 63, 64, 68, 67);
sc_name[8] = new Array("All", "Children\'s goods and foods", "Fine mechanics and optic", "Foods and drinks", "Knitwear and textile", "Leatherware", "Packages", "Perfumery and cosmetics", "Trade centers");

sc_id[9] = new Array(0, 73, 74, 72, 177, 71, 70, 171);
sc_name[9] = new Array("All", "Advertising agencies", "Advertising materials and printing", "Online", "Photography", "Printed media", "Publishing houses", "Radio and television");

sc_id[10] = new Array(0, 82, 81, 79, 77, 154, 80, 78, 176, 83, 85, 139);
sc_name[10] = new Array("All", "Apparatuses and equipment", "Dentistry", "Doctor\'s offices", "Hospitals", "Industrial health", "Laboratories", "Medical centers", "Mental health", "Pharmacy and herbs", "Sanitary materials", "Veterinary medicine");

sc_id[145] = new Array(0, 148, 149, 147, 150, 146);
sc_name[145] = new Array("All", "Colleges", "Courses", "Institutes", "Schools", "Universities");

sc_id[17] = new Array(0, 124, 151, 130, 126, 129, 128, 152, 125, 127);
sc_name[17] = new Array("All", "Accounting", "Catering", "Cleaning", "Consultants", "Couriers", "Forwarding", "Funerary services", "Security", "Translation and legalization");

sc_id[161] = new Array(0, 162, 166, 165, 163, 164, 167);
sc_name[161] = new Array("All", "Equipment", "Hobby", "Hunting and fishing", "Installations", "Sport Centers", "Sport information");

sc_id[16] = new Array(0, 170, 119, 121, 123, 117, 118);
sc_name[16] = new Array("All", "Entertainments", "Hotels", "Restaurants and bars", "Tickets and transport", "Tour - operators", "Travel agencies");



function set_subcategory(){
	c = document.edit_form.category;
	cid = c[c.selectedIndex].value;
	cn = c[c.selectedIndex].text;

	//if(sc_id[cid] === undefined){alert("Category not found.");}
	//else{
		sc = document.edit_form.subcategory;
		sc.options.length = 1;
		sc.selectedIndex = 0;

		for(i=0;i<sc_id[cid].length;i++){
			sc.options.length = i+1;
			sc.options[i].value = sc_id[cid][i];
			sc.options[i].text = sc_name[cid][i];
			//if(id == sc_id[cid][i]) sc.options[i].selected = true;
		}
	//}
}


