function displayContent(response){
    response = JSON.parse(response);
    $("#contenttext").html('');
    for(var i in response.content){
        $("#contenttext").append(response.content[i].title_pl+' - '+response.content[i].content_pl+'<br/>')
    }
}



