	function validateSelect(obj) {
		if(obj.options[obj.selectedIndex].value.length > 0) {
			document.form.submit();
		}
		return false;
	}		