$('select').on('change', function(){
$('textarea').html(
$(this).val().join("\n")
)
})
https://jsfiddle.net/5e2frxmo/ var topDate;
$('#btnDate').click(function(e){
e.preventDefault();
topDate = topDate === 0 ? -200 : 0;
$('#times').animate({
top: topDate
});
});
$(function(){
var topDate = +$.cookie("topValue")||0;
$('#btnDate').click(function(){
$.cookie("topValue", topDate = -topDate - 200);
$('#times').animate({top: topDate});
}).click();
});