diff --git a/src/libs/convert/educationLevelMod.js b/src/libs/convert/educationLevelMod.js
new file mode 100644
index 0000000000000000000000000000000000000000..4ee4b37674e130bfad9d0cf3e0c0e587075e06f5
--- /dev/null
+++ b/src/libs/convert/educationLevelMod.js
@@ -0,0 +1,28 @@
+module.exports = function educationLevelMod(id) {
+    switch (id) {
+        case 1:
+        return 'Creche';
+        case 2:
+        return 'Pré-Escola';
+        case 3:
+        return 'Educação Infantil Unificada';
+        case 4:
+        return 'Educação Infantil e Ensino Fundamental - Multietapa';
+        case 5:
+        return 'Ensino Fundamental - anos iniciais';
+        case 6:
+        return 'Ensino Fundamental - anos finais';
+        case 7:
+        return 'Ensino Fundamental multietapa e correção de fluxo';
+        case 8:
+        return 'Ensino Médio';
+        case 9:
+        return 'EJA - Ensino Fundamental';
+        case 10:
+        return 'EJA - Ensino Médio';
+        case 11:
+        return 'Educação Profissional';
+        default:
+        return 'Não classificado';
+    }
+};