

$().ready(function() {

	$('#currentProfile').change(function() {
		$.post("presentation/UserController.php", {action: "changeUserProfile", userProfileId: $('#currentProfile').val()}, function(data) {
			window.location.reload(true);
        });
        
	});
		

});


