jQuery(document).ready(function() {
	if(jQuery('#adresse4_pays_id').length) {
		jQuery('#adresse4_pays_id').change(updatePrice);
	}
});

function updatePrice() {
	var period = jQuery("div.form_d input[type='radio'][name='bulletin\[duree\]'][checked]");
	var country = jQuery("#adresse4_pays_id");
	if(period.length && country.length) {
		$.ajax({
		   	type: "POST",
		   	dataType: "json",
		   	data: "class=bulletin&method=getReloaded&params[country]="+jQuery(country).val()+'&params[period]='+jQuery(period).val(),
		   	url: "/request.php",
		   	beforeSend: function() {
				jQuery('#line_duree .form_g label').prepend('<img id="imgLoading" src="/templates/ktotv/images/loading.gif" alt="Loading ..." />');
			},
		   	error:function(msg) { },
		   	success:function(data) {
				jQuery('#imgLoading').hide();
				jQuery('#displayed_price').html(data.price);
				jQuery('#line_duree .form_d').html(data.periods);
			}
		});
	}
}

function updateClickedVal(elemVal) {
	var period = jQuery("div.form_d input[type='radio'][name='bulletin\[duree\]'][checked]");
	if(period.length && jQuery("input[id='bulletin\[duree\]_validator']").length) {
		jQuery("input[id='bulletin\[duree\]_validator']").value = jQuery(period).attr('value');
	}
	updatePrice();
}

