Manage <select>
Hello,
Someone can explain me how to manage (change value, remove disabled attribute, ...) a <select>?
Because when i create it in HTML and I llok to the result with Firebug I have an <a> :
<select id=marque" onchange="showModel()" name="marque" >
<option value="">Tous</option>
<option value="Peugeot">Peugeot</option>
</select>
<a class="selectBox selectBox-dropdown" style="display: inline-block; -moz-user-select: none;" title="" tabindex="0">
<span class="selectBox-label">Tous</span>
<span class="selectBox-arrow"></span>
</a>
Do you know how I can deal with it?
Thanks.