Is it possible to click on the label related to the select element and make it drop down as it would normally do if you clicked on the select element itself?
I have tried this and it doesn't work:
        <li>
            <div class="styled-select">
                <label for="lang">Languages</label>
                <select id="lang">
                    <option class="green">eng</option>
                    <option class="green">fr</option>
                </select>
            </div>
        </li>
The reason why I am asking this is that the label will be floated left and the select right.
