function changeSelectPaysCommande(){
    var price = parseInt(document.getElementById('price').innerHTML);
    var total = null;
    var pays = document.getElementById('pays').options[document.getElementById('pays').selectedIndex].value;
    
    if(pays != 0){
        if(pays != 72){
            total = price + 30 +'€';
            document.getElementById('port').innerHTML = '<strong>30€</strong>';
        } else{
            total = price + 21 +'€';
            document.getElementById('port').innerHTML = '<strong>21€</strong>';
        }    
        document.getElementById('total').innerHTML = '<strong>'+total+'</strong>';
        return true;
    } else{
        total = '';
        document.getElementById('port').innerHTML = '<strong>Veuillez sélectionner votre pays</strong>';
        document.getElementById('total').innerHTML = '<strong>'+total+'</strong>';
        return false;
    }
    
}
