// JavaScript Document
function MWTarifShow(){
	
	var countryId = $F('countryTarif');
	var action = 'showTarif';
	var paramstr = 'action=' + action + '&countryId=' + countryId ; 
	var url = '/_scriptlibrary/tarifHandler.php'
	Element.update('tarifContent','<img src="/images/loading.gif" />');
	var myAjax = new Ajax.Request(url, {
				method: 'post',
				onSuccess : function(resp) {
					Element.update('tarifContent',resp.responseText);
				},
				onFailure : function(resp) {
					alert("Error occured during data load.");
					return false;
				},
				parameters : paramstr
	});	
}