diff --git a/src/libs/routes/population.js b/src/libs/routes/population.js
index fe122d9b4006b9a6e9c4bd2088f780fc9a58a315..90f5713454c83ad7e78c41e995220d6c2622bc64 100644
--- a/src/libs/routes/population.js
+++ b/src/libs/routes/population.js
@@ -65,6 +65,22 @@ rqf.addField({
         foreign: 'estado_id',
         foreignTable: 'ibge_populacao'
     }
+}).addValue({
+    name: 'region',
+    table: 'regiao',
+    tableField: 'nome',
+    resultField: 'region_name',
+    where: {
+        relation: '=',
+        type: 'integer',
+        field: 'regiao_id',
+        table: 'ibge_populacao'
+    },
+    join: {
+        primary: 'id',
+        foreign: 'regiao_id',
+        foreignTable: 'ibge_populacao'
+    }
 }).addValue({
     name: 'min_year',
     table: 'ibge_populacao',
@@ -98,13 +114,12 @@ populationApp.get('/', rqf.parse(), rqf.build(), (req, res, next) => {
    .group('ibge_populacao.ano_censo')
    next();
 }, query, (req, res, next) => {
-    let somapop = 0;
-    for (var i = 0; i < req.result.length; i++) {
-        somapop += req.result[i].population;
-    }
-
-    req.result = [{population: somapop, year: req.result[0].year}];
-    console.log(req.params);
+    // let somapop = 0;
+    // for (var i = 0; i < req.result.length; i++) {
+    //     somapop += req.result[i].population;
+    // }
+    //
+    // req.result = [{population: somapop, year: req.result[0].year}];
     next()
 }, id2str.transform(true), response('population'));