//this enables a custom text label when a radio button is chosen from a list of radio buttons
function radio_checker(what, where) {
		if (document.getElementById(what).checked) {
			document.getElementById(where).disabled = false;
			document.getElementById(where).focus();
		}
		else {
			document.getElementById(where).disabled = true;
		}
}