I am using php & javascript. I have written the code for dropdown menu. Now I want to write a code where I enter word in the textbox & it will suggest the word from the dropdown. Like if I enter 'abc' in text box , it will give all the result start with 'abc' from the drop down. Please provide me proper code in php or javascript... that will fulfill my conditions. Thank you. below is a dropdown code. I want search & suggest code.
<label>Site Name:</label>
<select id="combobox">
<option value=""></option>
<option value="volvo">Volvo</option>
<option value="saab">Saab</option>
<option value="fiat">Fiat</option>
<option value="audi">Audi</option>
</select>
<input type="submit" name="submit" value="submit"/>