Even better than that .live(), in terms of performance, .delegate(). This works the same way .live(): it uses something called a bubble event, which means that when an event is triggered in a DOM element, all parents of that element are notified of the event. delegatehowever, it has slightly better syntax and a significant performance advantage.
$('#parentElement').delegate('select.yourSelectClass', 'change', function() {
});
#parentElement , select, . document.body, , , DOM, , , .
select.yourSelectClass , yourSelectClass. , jQuery, .