
function change()
	{
     if(document.getElementById('drplanguage').value=='English')
     {
	  window.location='index.html';
     }
	 else if(document.getElementById('drplanguage').value=='Dutch')
	 {
       window.location='index_dutch.html';
	 }
	 else if(document.getElementById('drplanguage').value=='Spanish')
	 {
       window.location='index_spanish.html';
	 }
	  else if(document.getElementById('drplanguage').value=='French')
	 {
       window.location='index_french.html';
	 }
	 else if(document.getElementById('drplanguage').value=='German')
	 {
       window.location='index_german.html';
	 }
	 
	}


