<%-- bdc34: for some odd reason id and name should not be grant in this input element. --%>
diff --git a/productMods/edit/forms/js/customFormWithAdvanceTypeSelection.js b/productMods/edit/forms/js/customFormWithAdvanceTypeSelection.js
index 5ce3a4fd..f4b0092a 100644
--- a/productMods/edit/forms/js/customFormWithAdvanceTypeSelection.js
+++ b/productMods/edit/forms/js/customFormWithAdvanceTypeSelection.js
@@ -225,8 +225,12 @@ var customForm = {
this.acSelectorWrapper.hide();
this.acSelector.attr('disabled', 'disabled');
-
- this.acSelection.find('label').html('Selected ' + this.getSelectedTypeName() + ':');
+
+ // If only one form step, type is pre-selected, and this label is coded in the html.
+ if (this.formSteps > 1) {
+ this.acSelection.find('label').html('Selected ' + this.getSelectedTypeName() + ':');
+ }
+
this.acSelection.show();
this.acReceiver.val(uri);