function update_impact_type_for_event(e, event, history) {
    $("select#impact_type option:selected").each(function () {
        event.impact_type = $.trim($(this).val());
    });
}