function selectBuilding(buildval) {
    if (buildval == "building") {
        $(".building").show();
    }
    else {
        $(".building").hide();
        $("."+buildval).show();
    }
}

$(function(){
    $(".dropdown-menu").on('click', 'li a', function(){
      $(".dropdown-toggle:first-child").text($(this).text());
      $(".dropdown-toggle:first-child").val($(this).text());
      $(".dropdown-toggle:first-child").append('<span class="caret"></span>');
   });

});

$(document).ready(function(){
             
    $("#filter").keyup(function(){
        var filter = $(this).val();
        $(".building .room").each(function(){
            if ($(this).text().search(new RegExp(filter, "i")) < 0) {
                $(this).hide();
            } else {
                $(this).show();
            }
        });
    });
    
});
