If you only want it to scroll on page load then put this in your onload eventHandler. If your div is being populated via AJAX then put this after the code that is appending content.
var sd = document.getElementById("#someDiv");
sd.scrollTop = sd.scrollHeight;