What is the simplest way to iterate through all select drop downs with ID's matching a pattern using jquery. for example:
<select id="begin_1_end">...</select>
<select id="begin_32_end">...</select>
<select id="begin_42_end">...</select>
<select id="dontgetme_2_end">...</select>
<select id="begin_12_dontgetme">...</select>
to iterate through the first 3 selects only.