function SelectClick(selid,aid1,aid2,id,cat){
			var chooser = document.getElementById(selid);
			var choice = chooser.options[chooser.selectedIndex].value;
			//alert(choice);
			document.getElementById(aid1).href = "/shop/?action=ADD2BASKET&pid=" + id + "&category=" + cat + "&quantity=" + choice;
			document.getElementById(aid2).href = "/shop/?action=ADD2BASKET&pid=" + id + "&category=" + cat + "&quantity=" + choice;
		}
