function ToggleOtherInterest() {
	if ($('area_of_interest').value == 'Other') {
		$('f-other_interest').show();
	} else {
		$('f-other_interest').hide();
	}
}
Event.observe(window, 'load', function() {
  SetFocus('form', 'firstname');
});
