/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Sep 24 2025 | 06:30:40 */
jQuery(document).ready(function () {
    jQuery('#selection-location').on('change', function () {
      var selected = jQuery(this).val();

      if (selected === 'chandigarh') {
        jQuery('.chandigarh').show();
        jQuery('.ludihana').hide();
      } else if (selected === 'ludihana') {
        jQuery('.ludihana').show();
        jQuery('.chandigarh').hide();
      }
    });

    // Trigger on load
    jQuery('#selection-location').trigger('change');
  });