how to make a drop-down box come on click of option in dropdown usin js and html code example
Example: html create drop down list
<html>
<head>
<title>Selection Inputs</title>
</head>
<body>
<form>
<label for="selector">
<p>A "select" element allows users to input from a selection:</p>
<select id="selector">
<option>Option 1</option>
<option>Option 2</option>
<option selected>Option 3</option>
<optgroup label="Group">
<option>Option 4</option>
<option>Option 5</option>
</select>
</label>
</form>
</body>
</html>