
	function reloadWithLampModel(formName) {
			loc = '?manufacturer=' + formName.manufacturer.options[formName.manufacturer.selectedIndex].value;
			if(formName.model.options[formName.model.selectedIndex].value != "")
				loc += "&model=" + formName.model.options[formName.model.selectedIndex].value;
			document.location = loc;
	}
	
