FYI, reported that there is a certificate error... Don't know if google has made that part of their process and could be an issue, but thought worth mentioning possibly.
Couple of other things, looks like there are some other errors on the page that could/might affect the javascript from running. There are two instances of <body tags on the page. One at line 633 and the other at 818.
Got an undefined result when attempting to use the code contained within the if statement.
Seeing the duplicate body tag, perhaps the onload code should be moved up to where the body tag was first called.
What is currently line 633:
Code:
<body id="loginBody"onload="update_zone(document.create_account); update_zone_shipping(document.create_account);">
To be made to:
Code:
<body id="loginBody"onload="update_zone(document.create_account); update_zone_shipping(document.create_account); initialize();">
Might take a smidge to find exactly where to put that, but...