here is my code:
<select id="List" name="UserType" onChange ="hide">
<option value="0" disabled="disabled" selected="selected">Tipo de Usuario</option>
<option value="1" onclick="hide">Administrador</option>
<option value="2" onclick="hide">Moderador</option>
<option value="3" onclick="hide">Usuario Comun</option>
</select>
when i click some value (not zero) in the the drop down, i need remove the first item from this (Tipo de Usuario). Some code in javascript able to do that?