function enableOtherBox(selectId, boxId) {
	var currentSelection = document.getElementById(selectId).value;
	if (currentSelection == "Other") {
		document.getElementById(boxId).style.display = "";
	}else {
		document.getElementById(boxId).style.display = "none";
	}
}
