diff --git a/src/libs/middlewares/id2str.js b/src/libs/middlewares/id2str.js
index 48ecf56cb759090b24b5c013997df80c6a1dfc41..c86bf51efefdbaba71469788c7543b368264cffa 100644
--- a/src/libs/middlewares/id2str.js
+++ b/src/libs/middlewares/id2str.js
@@ -5,12 +5,13 @@ const schoolYear = require(`${libs}/convert/schoolYear`);
 const admDependency = require(`${libs}/convert/admDependency`);
 const location = require(`${libs}/convert/location`);
 const ethnicGroup = require(`${libs}/convert/ethnicGroup`);
+const educationLevel = require(`${libs}/convert/educationLevel`);
 
 const ids = {
     gender_id: gender,
     period_id: period,
     school_year_id: schoolYear,
-    education_level_id: schoolYear,
+    education_level_id: educationLevel,
     adm_dependency_id: admDependency,
     adm_dependency_detailed_id: admDependency,
     location_id: location,
@@ -40,5 +41,6 @@ module.exports = {
     schoolYear,
     admDependency,
     location,
-    ethnicGroup
+    ethnicGroup,
+    educationLevel
 };