diff --git a/packages/organization-select/src/organization-select.js b/packages/organization-select/src/organization-select.js
index d28a5c696abc90b42361cb72ccd3dae3e8e448a9..b74f172e3041bf772fbebdf56c8a5a0773953dae 100644
--- a/packages/organization-select/src/organization-select.js
+++ b/packages/organization-select/src/organization-select.js
@@ -120,7 +120,7 @@ export class OrganizationSelect extends AdapterLitElement {
         this._clearSelect2();
 
         const data = this.organizations.map((item) => {
-            return {id: item.object['@id'], text: item.code + ' ' + item.name};
+            return {id: item.object['@id'], text: item.name};
         });
 
         data.sort((a, b) => {
@@ -264,7 +264,6 @@ export class OrganizationSelect extends AdapterLitElement {
         for (let org of data['hydra:member']) {
             let organization = {
                 id: org.identifier,
-                code: org.alternateName,
                 name: org.name,
                 url: org.url,
                 value: org['@id'],