function changePix(filePath) {
  var styleValue = "url(" + filePath + ")";
  var startImage = document.getElementById("startimage");
  
  startImage.style.backgroundImage = styleValue;
}

