[jQuery] Need solution for select element value change...

[jQuery] Need solution for select element value change...


Hi, all...
Here's the code:
$(document).ready(function() {         
            
$('.agents').change(function() {
$('option:selected', this).each(function() {
Here's the problem:
I would like for the function triggered in the code
above by ".change" to work if the same value is chosen
in the select element ".agents".
Right now, the function following .change is only triggered
if another value is selected. I tried .select, but that didn't work.
I tried .click, too, but that wasn't satisfactory.
Anyone have another option?
Thanks,
Rick