$(document).ready(function() {
	
	// Update price when user change size 
    $("#select-size, #select-country").change(function () {
    	
    	$("#select-size option:selected").each(function () {
    		// price is in the 'title' attribute of the option..!
    		$("#select-price").html($(this).attr('title'));
    		
    		$("#select-subtotal").html($(this).attr($("#select-country").val()));
    	});
    		
    });
    
    // add the txt class to input on order form
    $(".order-column input[type=text]").addClass("txt");
    
    
    
    
});