test.innerHTML += "<input type='radio' name='choices' value='A'> "+chA+"<br>";
test.innerHTML += "<input type='radio' name='choices' value='B'> "+chB+"<br>";
test.innerHTML += "<input type='radio' name='choices' value='C'> "+chC+"<br><br>";
test.innerHTML += "<input type='radio' name='choices' value='"+questions[pos][4]+"' checked> Верный ответ <br><br>";
$(".zoo_in").click(function() {
var width = $('.img').width();
width = width*1.1;
let pos = $('.point_1').position();
$('.point_1').css("left", pos.left*1.1).css("top", pos.top*1.1);
$('.img').css({"width": width})
});
$(".zoom_out").click(function() {
var width = $('.img').width();
width = width/1.1;
let pos = $('.point_1').position();
$('.point_1').css("left", pos.left/1.1).css("top", pos.top/1.1);
$('.img').css({"width": width})
});