In the main dropdown for days of the week, each day has a sub drop-down with the same name. However, when the form is posted, we are unable to retrieve the value of the selected option. As a solution, we need to reset all other submenu options and send only the actual selected value.
<select name="Todays_Day" class="form-control input-lg form-el" id="tday" required>
<option value="" selected>When do you need us?</option>
<option value="Sunday 22-10-2017" >Sunday 22-10-2017</option>
...
<div style='display:none; ' id='todayt'>
<select name="date" class="form-control input-lg form-el" >
<option value="">What time?</option>
...
...