function HeardSelected(){
  if ($('hear_about').value == 'Other') {
    $('f-heard_other').show();
    $('hear_about').focus();
	} else {
    $('f-heard_other').hide();
	}
}
Event.observe(window, 'load', function(){
  $('fname').focus();
}
);