function safeOnChange1() {
  
  var selObj = document.getElementById('myBox');
  var num = selObj.selectedIndex;
  
if(num == 0)window.location = "";    // 0 = eerste in de select  
if(num == 1)window.location = "http://media.sonystyle-europe.com/en/staff/OFFER4U/clearance_index.asp?u_CTY=AT/";   // 1 = second in de select
if(num == 2)window.location = "http://media.sonystyle-europe.com/en/staff/OFFER4U/clearance_index.asp?u_CTY=BE"; 	
if(num == 3)window.location = "http://media.sonystyle-europe.com/en/staff/OFFER4U/clearance_index.asp?u_CTY=DK"; 
if(num == 4)window.location = "http://media.sonystyle-europe.com/en/staff/OFFER4U/clearance_index.asp?u_CTY=FI"; 
if(num == 5)window.location = "http://media.sonystyle-europe.com/en/staff/OFFER4U/clearance_index.asp?u_CTY=FR"; 
if(num == 6)window.location = "http://media.sonystyle-europe.com/en/staff/OFFER4U/clearance_index.asp?u_CTY=DE"; 
if(num == 7)window.location = "http://media.sonystyle-europe.com/en/staff/OFFER4U/clearance_index.asp?u_CTY=GR"; 
if(num == 8)window.location = "http://media.sonystyle-europe.com/en/staff/OFFER4U/clearance_index.asp?u_CTY=IT"; 
if(num == 9)window.location = "http://media.sonystyle-europe.com/en/staff/OFFER4U/clearance_index.asp?u_CTY=NL"; 
if(num == 10)window.location = "http://media.sonystyle-europe.com/en/staff/OFFER4U/clearance_index.asp?u_CTY=NO"; 
if(num == 11)window.location = "http://media.sonystyle-europe.com/en/staff/OFFER4U/clearance_index.asp?u_CTY=PT"; 
if(num == 12)window.location = "http://media.sonystyle-europe.com/en/staff/OFFER4U/clearance_index.asp?u_CTY=ES"; 
if(num == 13)window.location = "http://media.sonystyle-europe.com/en/staff/OFFER4U/clearance_index.asp?u_CTY=SE"; 
if(num == 14)window.location = "http://media.sonystyle-europe.com/en/staff/OFFER4U/clearance_index.asp?u_CTY=CH"; 
  

} 


