Also here's my code for the regular.html: regular.html
<html>
<head>
<title>Drop down</title>
</head>
<body>
<h1>Regular</h1>
<select>
<option href="regular.html">Regular</option>
<option href="contractual.html">Contractual</option>
</select>
</body>
</html>
And this is for the contractual: contractual.html
<html>
<head>
<title>Drop down</title>
</head>
<body>
<h1>Contractual</h1>
<select>
<option href="regular.html">Regular</option>
<option href="contractual.html">Contractual</option>
</select>
</body>
</html>