// get the one which just select $('.form_select select').change(function(e) { var current_selected = this.id; // get all Dropdown in the form // remove val of dropdowns except current select $('.form_select select:not(#' + current_selected + ')').each(function () { $('#' + this.id).val(''); }); });