var currentSize = 13; //Нормален размер на шрифта 
         var max = 20; //Максимален размер на шрифта 
         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"; 
         }