$(document).ready(function(){

	$(".delete").click(function(){
		if(confirm("Are you sure you want to remove it?")) return true;
		else return false;
	});
	$("#select_all").click(function(){
		$(".chk").attr("checked","checked");
	});
	$("#deselect_all").click(function(){
		$(".chk").attr("checked","");
	});
});

function getRegions(link)
{
	var country_id = link.value;
	$.getJSON('index.php?id=sms_ads&country_id='+link.value+'&get_regions', function(data) {
		$('#region').empty();
		$('#region').append('<option value="0">any</option>');
		for each(var region in data) {
			$('#region').append('<option value="'+region.id+'">'+region.name+'</option>');
		}
	}
	)
}
