//' JavaScript File
//alert("this is the Quick page");
	function onOccListChange(occList, occText) {
		    var list = document.getElementById(occList);
		    var text = document.getElementById(occText);
		    text.value = list.value;
		}
	function onOccTextChange(occList) {
			var list = document.getElementById(occList);
			list.options[0].selected = true;
		}
		
		