$('ul#ulscroller').children('li').last();
http://api.jquery.com/last/
You could also do it like so:
$('ul#ulscroller').children('li:last-child');
http://api.jquery.com/last-selector/
Here's an example to illustrate it: http://jsfiddle.net/TheNix/W92vF/