$(document).ready(function () {
$('.spoiler_indicator').click(function () {
var indicator = $(this);
var toggle = $(this).prev('.spoiler_toggle');
if (toggle.is(':visible')) {
toggle.hide(0);
indicator.html('Открыть');
} else {
toggle.show(0);
indicator.html('Закрыть');
}
});
});
$( "input[class^='oplata']" ).last().val();
("#scrollpane3").scrollTop(0)