diff --git a/app/main/forms.py b/app/main/forms.py index 42bdaf37e..737a5b003 100644 --- a/app/main/forms.py +++ b/app/main/forms.py @@ -687,10 +687,10 @@ class ServiceSwitchLettersForm(StripWhitespaceForm): class ServiceLetterClassForm(StripWhitespaceForm): letter_class = RadioField( - 'Postage classes', + 'Choose your postage', choices=[ - ('first', '1st class only'), - ('second', '2nd class only'), + ('first', 'First class only'), + ('second', 'Second class only'), ], )