Everything else works except for the pre-select for the time zone drop down.
The select code is:
var state = result.data.timeZone.split("/")[1];
$('#timeZone option:selected').removeAttr('selected');
$('#timeZone option[value='+state +']').attr('selected','selected');
And my select sample is:
<select id="timeZone" name="timeZone" class="form-control" required>
<option value="">Select User Time Zone...</option>
<option value="Australia/Brisbane">QLD (Brisbane)</option>
<option value="Australia/Sydney">NSW (Sydney)</option>
</select>
I was using just the time zone and not the country as well… example… Brisbane instead of Australia/Brisbane… and the below code: