I have a table containing dropdown list in each row. Rows doesn't have id property. So, as row doesn't have id property, how can i get selected item of the dropdown list and corresponding ID column's value. for example, if i select an item from the first row i want value of the item and ID column's value, i.e. 204.

This is the html code of the above table
<table class="table-1 gapmb40">
<thead>
<tr>
<th>
Status
</th>
<th>
<a class="sortable" href="">Featured</a>
</th>
<th>
</th>
<th>
<a class="sortable" href="">Date Modified</a>
</th>
<th>
</th>
<th>
ID
</th>
</tr>
</thead>
<tbody>
<tr>
<td>
<select class="input-2" name="2">
<option value="New">New</option>
<option selected="selected" value="Live">Live</option>
<option value="AccountOnly">AccountOnly</option>
<option value="Hide">Hide</option>
<option value="Suspended">Suspended</option>
</select>
</td>
<td>
<a href="">Feature</a>
</td>
<td>
<a href="">View</a>
</td>
<td>
07/03/2013
</td>
<td style="display: none">
<a href="">LogOnAs</a>
</td>
<td>
204
</td>
</tr>
</tbody>
</table>
give all you selectbox a class...say
selectClassand use jquery class selector.try this
fiddle here