function process_other(selected){
	other_input = document.getElementById("other_profession");
	if( selected.value == "other" ){
		other_input.style.display = "";
	}else{
			other_input.style.display = "none";
	}
}