function hideDisplayOther(form) {
  if(form.elements['subscriber[where_did_you_hear_about_us_id]'].value == 3) {
     $("#where_other").show();
  }else{
    $("#where_other").hide();
  }
}  
