Sachsentext

All select elements have an explicitly associated label.

All select elements should have a corresponding label element. Screen readers often enter a "form mode" where only label text is read aloud to the user, and missing labels can make a form unusable in these cases.

Example

Wrong

Select your state: <select name="state">...

Right

<label for="state">Select your state:</label> <select id="state" name="state">...