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