xxxxxxxxxx
<html>
<body>
<h1>Basic datalist element example</h1>
<label for="favorite-book"
>What is your favorite Lord of the Rings book?
<input list="book-list" id="favorite-book" name="favorite-book" />
<datalist id="book-list">
<option value="The Fellowship of the Ring"></option>
<option value="The Two Towers"></option>
<option value="The Return of the King"></option>
</datalist>
</label>
</body>
</html>