you need to edit the values being used for the comparison in the code for each options.
for example, the option for Australian Capital Territory is:
<option value="ACT" <?php if (!(strcmp("AL", (isset($_GET['valid'])?ValidatedField("usersUpdate","UserState"):$row_WADAusers['UserState'])))) {echo "selected=\"selected\"";} ?>>Australian Capital Territory</option>
notice the first part of this code:
<option value="ACT" <?php if (!(strcmp("AL",
this is setitng it to compare the value "AL" with what is stored in the database, but it needs to be changed to match the options value ATC:
or:
<option value="ACT" <?php if (!(strcmp("ATC",