I have a query that if user select options in multi select box(choosen plugin) it should post to another page the order which was selected by user.
For e.g. I have following code
<select name="city" multiple data-rel="chosen" >
<option value="1">Mumbai</option>
<option value="2">Pune</option>
<option value="3">Nagpur</option>
<option value="4">Nashik</option>
</select>
If user select in following order Nagpur,Pune,Nashik and Mumbai it is posting values to another page by following manner 1.2,3,4( sorted).
But, I would like to post to another page the order which was selected by user i.e. 3,2,4,1
Please help..
Thanks in Advance