		function changeOptions() {
			whichOption = document.editForm.typeId.selectedIndex;
			if ( (whichOption == 1) || (whichOption == 5) ) {
				document.editForm.verificationIntentId.selectedIndex = 1;
			} 
		}
		function enforceOptions() {
			whichOption = document.editForm.typeId.selectedIndex;
			if ( (whichOption == 1) || (whichOption == 5) ) {
				if (document.editForm.verificationIntentId.selectedIndex != 1) {
					document.editForm.verificationIntentId.selectedIndex = 1;
					alert("The verification program isn't meant for individuals and retailers.");
				}
			}
		}

