function selectBrand(brand) {
	if (brand.selectedIndex == 0) {
		window.location = "/catalog.html";
	} else {
		window.location = "/catalog_brand_"+brand.options[brand.selectedIndex].value+".html";
	}
	return true;
}