diff --git a/pinaxcon/registrasion/forms.py b/pinaxcon/registrasion/forms.py
index d3120a96..6f5c2c8c 100644
--- a/pinaxcon/registrasion/forms.py
+++ b/pinaxcon/registrasion/forms.py
@@ -28,6 +28,8 @@ class ProfileForm(forms.ModelForm):
             'lca_announce',
             'lca_chat',
             'future_conference',
+            'linux_australia',
+            'past_lca',
         ]
         widgets = {
             'past_lca': forms.widgets.CheckboxSelectMultiple
diff --git a/pinaxcon/registrasion/models.py b/pinaxcon/registrasion/models.py
index e10c59d5..276641e2 100644
--- a/pinaxcon/registrasion/models.py
+++ b/pinaxcon/registrasion/models.py
@@ -140,7 +140,6 @@ class AttendeeProfile(rego.AttendeeProfileBase):
     state = models.CharField(
         max_length=256,
         verbose_name="State/Territory/Province",
-        help_text="If your Country is Australia, you must list a state.",
         blank=True,
     )
 
diff --git a/vendor/registrasion/registrasion/views.py b/vendor/registrasion/registrasion/views.py
index 0e6e442e..99b8bbd7 100644
--- a/vendor/registrasion/registrasion/views.py
+++ b/vendor/registrasion/registrasion/views.py
@@ -348,7 +348,7 @@ def _guided_registration_profile_and_voucher(request):
         title="Profile and Personal Information",
         form=profile_form,
         description=("<div class=\"text-info\"><em>You can come back and edit these details any time before "
-                     "March 10 2023.</em></div>"),
+                     "June 6 2023.</em></div>"),
     )
 
     return [voucher_section, profile_section]