$(document).ready(function() {
	$(".usun").click(function() {       
		var odpowiedz = confirm('Czy na pewno chcesz usunac?');
		if(odpowiedz==true)
			return true;
		else
			return false;
	});
});