﻿  $(document).ready(function() {
         $(".buyRentSwitch").change(
            function(objEvent){
                    var selected = $('option:selected', this).val();
                    if (selected != "") {
                        $(".tobuy").toggle();
                        $(".torent").toggle();
                    }
            }
        );
  });  
  
