Hi There, new to Html and Javascript coding, I have written a code and I have got stuck, don’t know if it is difficult or easy and I am just not getting it, what I want to do is I have created 3 dropdown boxs and I want to link the 3 of them, i.e first dropdown is a factory, then based on that factory will be the departments on the second dropdown (different departments for different factories) then the third dropdown will be problems arising for the different departments, want to use javascript, Html for this if I can. Below is the code I have put together, as I said new to this and no programming experience, anyone any idea’s, tried a few things found on the internet but cant get any of them to work, tried If / else statements etc. Any help would be much appreciated.
<!DOCTYPE html>
<html lang=“en-US">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Process Control Troubleshooting Guide</title>
</head>
<body>
<Body bgcolor=White>
<p style="text-align:center;"><img src="devro.gif" alt="Devro logo">
<h1><center><h1 style="color:Red;font-size:50px;">Process Control Troubleshooting Guide</h1>
<label>Please Select Plant</label>
<select style="font-size:50px"; id="PlantSelection">
<option value = "1">select</option>
<option value = "2">Moodiesburn</option>
<option value = "3">Bellshill</option>
</select>
<h2><center><h2 style="color:Black;font-size:25px;"
<td class="mobileTDInput">
<label>Department</label>
<select style="font-size:50px"; id="DepartmentSelection">
<option value 1=“Select">select</option>
<option value 4=“Drums">Drums</option>
<option value 5=“Gel">Gel</option>
<option value 6=“Solutions">Solutions</option>
<option value 7=“Wet End">Wet End</option>
<option value 8=“Shirred">Shirred</option>
<option value 9=“Heatcure">Heatcure</option>
</select>
</td>
</h2>
</tr>
<h3><center><h3 style="color:Black;font-size:25px;"
<td class="mobileTDInput">
<label>Problem</label>
<select style="font-size:50px"; id="ProblemSelection>
<option value 1=“Select">select</option>
<option value 10=“Wrong Chemicals Added">Wrong Chemicals Added</option>
<option value 11=“Power Cut">Power Cut</option>
<option value 12=“Contamination">Contamination</option>
</select>
</td>
</h3>
</tr>
</head>
<input type="button" value=Reset onClick="location.href=location.href">
</body>
</html>