function hideit(){
  var o = document.getElementById('maakuwkeuze');
  o.style.display = 'none';
}
window.onload = function(){
  setTimeout("hideit()",4000);
};
