I have a select field that is dynamically populated with an ajax call that simply returns all the HTML select options. Here is the part of the PHP that just echo\'s the sel
An example using .live()
$('#my_form_id select[name^="my_select_name"]').live('change', (function () { console.log( $("option:selected", this).val()); }) );