					var page = "";
					page += "<select name='product_list' onChange='goProduct(document.offices.product_list.options[document.offices.product_list.selectedIndex].value)'>\n";
					// goProduct(document.offices.product_list.options[document.products.product_list.selectedIndex].value)'>\n";
					page += "<option selected>ВЫБЕРИТЕ ГОРОД:\n";

					for (var i = 0; i < PRODUCT_LIST.length; i++){
					page += "<option value=\"" + PRODUCT_LIST[i].url
					page += "\">" + PRODUCT_LIST[i].name;
					page += "</option>\n";
					}
					page += "</select>\n";
					document.write(page);
					//document.write(message);
					document.close();