how can get the value selected by the user on each select field using $(.promote).each(function(){}); the html code is:
<div class="class1">
<select class=" promote">
<option value="Promote">Promote</option>
<option value="DoNotPromote" selected="selected">Do not Promote</option>
</select>
</div>
<div class="class2">
<select class=" promote">
<option value="Promote">Promote</option>
<option value="DoNotPromote" selected="selected">Do not Promote</option>
</select>
</div>;
<div class="class3">
<select class=" promote">
<option value="Promote">Promote</option>
<option value="DoNotPromote" selected="selected">Do not Promote</option>
</select>
</div>;
<div class="class4">
<select class=" promote">
<option value="Promote">Promote</option>
<option value="DoNotPromote" selected="selected">Do not Promote</option>
</select>
</div>;