diff --git a/src/registrar/forms/application_wizard.py b/src/registrar/forms/application_wizard.py
index c28e46162..5c9236b0a 100644
--- a/src/registrar/forms/application_wizard.py
+++ b/src/registrar/forms/application_wizard.py
@@ -736,8 +736,9 @@ class NoOtherContactsForm(RegistrarForm):
required=True,
# label has to end in a space to get the label_suffix to show
label=(
- "Please explain why there are no other employees from your organization "
- "we can contact to help us assess your eligibility for a .gov domain."
+ "You don't need to provide names of other employees now, but it may "
+ "slow down our assessment of your eligibility. Describe why there are "
+ "no other employees who can help verify your request."
),
widget=forms.Textarea(),
validators=[
diff --git a/src/registrar/templates/application_other_contacts.html b/src/registrar/templates/application_other_contacts.html
index 7a901dfc5..f7d783a30 100644
--- a/src/registrar/templates/application_other_contacts.html
+++ b/src/registrar/templates/application_other_contacts.html
@@ -13,15 +13,25 @@
{% endblock %}
{% block form_required_fields_help_text %}
-{% include "includes/required_fields.html" %}
+{# commenting out to remove this block from this point in the page #}
{% endblock %}
{% block form_fields %}
- {{ forms.0 }}
- {# forms.0 is a small yes/no form that toggles the visibility of "other contact" formset #}
+
+ {% include "includes/required_fields.html" %}
{{ forms.1.management_form }}
{# forms.1 is a formset and this iterates over its forms #}
{% for form in forms.1.forms %}
@@ -59,6 +69,10 @@