 $(document).ready(function(){
  $("#region_filter").change(function () {
    var str = "";
    str = $("#region_filter option:selected").val();    
    switch(str){
      case ("all_regions"):
        $(".corp_offices_sec").show();
        $(".sales_customer_service_sec").show();
        $(".manufacturing_sec").show();
        $(".science_and_engineering_sec").show();
        $(".location").show();        
        break;    
      case ("north_america"):        
        $(".corp_offices_sec").show();
        $(".sales_customer_service_sec").show();
        $(".manufacturing_sec").show();
        $(".science_and_engineering_sec").show();
        $(".north_america").show();
        $(".europe").hide();
        $(".asia").hide();
        break;
      case ("europe"):
        $(".corp_offices_sec").show();
        $(".sales_customer_service_sec").show();
        $(".manufacturing_sec").show();
        $(".science_and_engineering_sec").hide();
        $(".europe").show();        
        $(".north_america").hide();
        $(".asia").hide();        
        break;
      case ("asia"):
        $(".asia").show();
        $(".north_america").hide();
        $(".europe").hide();
        $(".corp_offices_sec").hide();        
        $(".manufacturing_sec").hide();
        $(".science_and_engineering_sec").hide();
        break;        
    }
  });        
 });   
 
 
 
 