function disabler_facultystatus() {
	/********************************************************************
	Currently only two form actions use this script, namely,
	"request_account_option_1.php" and "request_account_option_2.php".
	********************************************************************/
	
	/********************************************************************
	Only the guest account page, "request_account_option_2.php" requires
	id="needFacultysponser", so check for it's existence before executing
	anything, otherwise the js won't work for the form without it.
	********************************************************************/
	var guest   = document.getElementById("needFacultysponser");

	/********************************************************************
	if guest account, set attributes for id="needTitle" and
	id="needFacultysponser" as appropriate.
	********************************************************************/
	document.getElementById("needTitle").style.display = "none";

	if (guest) {
		document.getElementById("needFacultysponser").style.display = "none";
		if (document.facultystatus.position.value=="Faculty") {
			document.getElementById("needTitle").style.display = "";
		}
		else if (document.facultystatus.position.value=="Staff" ||
			 document.facultystatus.position.value=="PostDoc") {
			document.getElementById("needTitle").style.display = "";
			document.getElementById("needFacultysponser").style.display = "";
		}
		else if (document.facultystatus.position.value!="") {
			document.getElementById("needFacultysponser").style.display = "";
		}
	}
	/********************************************************************
	otherwise it's existing group account, so set attributes for
	id="needTitle" only, since id="needFacultysponser" not in form
	********************************************************************/
	else {
		if (document.facultystatus.position.value=="Faculty"  ||
		    document.facultystatus.position.value=="Staff"    ||
		    document.facultystatus.position.value=="PostDoc") {
			document.getElementById("needTitle").style.display = "";
		}

	}
	
	/********************************************************************
	OSG users don't need to answer the 2nd set of questions - see group.inc
	********************************************************************/
	document.getElementById("dontNeedeverything").style.display = "";

	if (document.facultystatus.group.value=="osgusers") {
		document.getElementById("dontNeedeverything").style.display = "none";
	}
}
