// JavaScript Document
function sponsorship_update(description) {
	if (description.options[description.selectedIndex].value=="Other") {
		document.getElementById("sponsorship").style.display="block";	
	} else {
		document.getElementById("sponsorship").style.display="none";		
	}
}