$(function(){
 $("a[href='#scrolltobottom']").click(function(){
  $('html, body').animate({ scrollTop: $('#formID').offset().top }, 1500);
   return false;
 });
});

