Program:
Output:
<!DOCTYPE html>
<html>
<head>
<script type='text/JavaScript'>
function getPage(Choice)
{
Page = Choice.options[Choice.selectedIndex].value;
if(Page != "")
{
window.location = Page;
}
}
</script>
</head>
<body>
<form action="" name="f">
Select your favourite website:
<select name="MenuChoice" onchange="getPage(this)">
<option value="https://www.google.com/"> Google </option>
<option value="https://www.msbte.org.in/"> MSBTE </option>
<option value="https://www.yahoo.com/"> Yahoo </option>
</select>
</form>
</body>
</html>
Output:
