$('#get_test').click(function(){
$.post('ajax-request.php', {
act: 'start_test'
}, function(data) {
var jstring = $.parseJSON(data);
So now in jstring I have data associated with english_word and russian_word. How could I save russian_word data in an array and use it in a different function?