﻿jQuery(function() {
    jQuery("select.selectDeparture").change(function() {
        //alert(this.id);
        //alert(jQuery(this).val());
        jQuery(".departure").hide();
        jQuery("#departure" + jQuery(this).val()).show();

    });
});
