
<!--             
    
    function ShoeSizeCountryChanged()
    {                            
        var selectbox = document.getElementById("ShoeSizeCountry");
        
        switch (selectbox.value) 
        {
            case 'Australian':  ShowExtraDataRow(), HideExtraDataRowEuro();  break;
			
			case 'European':  ShowExtraDataRowEuro(), HideExtraDataRow();  break;

            default: HideExtraDataRow(), HideExtraDataRowEuro();  break;


        }
    }  
    
    function HideExtraDataRow()
    {                          
        var extradatarow = document.getElementById('extra_data_row');     
        extradatarow.style.display = 'none';
        document.getElementById('ShoeSize').value = '';
    }
    
    function ShowExtraDataRow()
    {                         
        var extradatarow = document.getElementById('extra_data_row');  
        
         if(navigator.userAgent.indexOf("Firefox")!= -1)
         {                                
             extradatarow.style.display = 'inline';
         } 
         else 
         {                              
             extradatarow.style.display = 'inline';
         }
    }
	
    function HideExtraDataRowEuro()
    {                          
        var extradatarow = document.getElementById('extra_data_row_euro');     
        extradatarow.style.display = 'none';
        document.getElementById('ShoeSize').value = '';
    }
    
    function ShowExtraDataRowEuro()
    {                         
        var extradatarow = document.getElementById('extra_data_row_euro');  
        
         if(navigator.userAgent.indexOf("Firefox")!= -1)
         {                                
             extradatarow.style.display = 'inline';
         } 
         else 
         {                              
             extradatarow.style.display = 'inline';
         }
    }
	
	
	
//-->  
