diff --git a/AKSubmission/forms.py b/AKSubmission/forms.py
index e63c7e694a1b96c06606c3788eb5f79691917cc2..2861adc4c4eb6a3f72ebc071e76de9afbca72fab 100644
--- a/AKSubmission/forms.py
+++ b/AKSubmission/forms.py
@@ -113,7 +113,7 @@ class AKForm(AvailabilitiesFormMixin, forms.ModelForm):
 
 class AKSubmissionForm(AKForm):
     class Meta(AKForm.Meta):
-        exclude = ['link']
+        exclude = ['link', 'protocol_link']
 
     def __init__(self, *args, **kwargs):
         super().__init__(*args, **kwargs)
@@ -139,7 +139,7 @@ class AKEditForm(AKForm):
 
 class AKWishForm(AKSubmissionForm):
     class Meta(AKForm.Meta):
-        exclude = ['owners', 'link']
+        exclude = ['owners', 'link', 'protocol_link']
 
 
 class AKOwnerForm(forms.ModelForm):
diff --git a/AKSubmission/templates/AKSubmission/submit_new_wish.html b/AKSubmission/templates/AKSubmission/submit_new_wish.html
index 043996075d9cb8d2b2cb92700639b1c22649d172..15a917d85b13a5aff2990234bbcc921a450436f3 100644
--- a/AKSubmission/templates/AKSubmission/submit_new_wish.html
+++ b/AKSubmission/templates/AKSubmission/submit_new_wish.html
@@ -7,6 +7,8 @@
 {% block title %}{% trans "AKs" %}: {{ event.name }} - {% trans "New AK Wish" %}{% endblock %}
 
 {% block imports %}
+    <link rel="stylesheet" href="{% static 'common/vendor/chosen-js/chosen.css' %}">
+    <link rel="stylesheet" href="{% static 'common/css/bootstrap-chosen.css' %}">
     <link href='{% static 'AKSubmission/vendor/fullcalendar3/fullcalendar.min.css' %}' rel='stylesheet'/>
     <link href='{% static 'AKSubmission/css/availabilities.css' %}' rel='stylesheet'/>