function changeFontSize(fontSize){
  	var container = document.getElementById("container");
	container.style.fontSize = fontSize;
} 
