var currentSize = 14; //Нормален размер на шрифта
         var max = 24; //Максимален размер на шрифта
         var min = 9; //Минимален размер на шрифта

         function increase_decrease(type) {
            var obj = document.getElementById('text');
            if(type) {
               if(currentSize < max) {currentSize++;}
            }
            else {
               if(currentSize > min) {currentSize--;}
            }
            obj.style.fontSize = currentSize + "px";
         }
