views:

145

answers:

0

I am using the following code for rendering a select box in one of my form and when i inspects i can see the following code in Firefox

<select name="make">
    <option value="13501">Jeep</option>
    <option value="26838">Joyner</option>
    <option value="13658">Kia</option>
    <option value="13898">Lada</option>
</select>

But in chrome when i inspect the form element i can see

<select name="make">
    <option value="13501">Jeep</option>
    <option value="13658">Kia</option>
    <option value="13898">Lada</option>
    <option value="26838">Joyner</option>
</select>

Any one please suggest a solution for this?