function toggleWhereHeard() {
  var value = $('#f_where_heard option:selected').val();
  if (value == 'Other')
    $('#f_where_heard_other').show();
  else
    $('#f_where_heard_other').hide();
}

$(document).ready(function () {
  $('INPUT.text').focus(function() {
    $(this).css('border', '1px solid #000');
  });
  $('INPUT.text').blur(function() {
    $(this).css('border', '1px solid #999');
  });
  $('INPUT[type=text]:first').focus();
});
