function changeText(selectSize) {
  txt = document.getElementById('text');
  txt.style.fontSize = selectSize + 'px';
  txt.style.lineHeight = (parseInt(selectSize)+3) + 'px';
}
