AJAX-Loading multiple elements by index

AJAX-Loading multiple elements by index

Hello

I'm trying to load elements into a div via AJAX using the load() function.
I have a bunch of div's with the same class in a remote file, and want to load the divs with the index of 3-6, (3,4,5,6). I am looking for a selector to get those elements, but can't find one suitable. At the moment my code looks as following:
  1. $('#main_wrap').load('portfolio.html .item:gt(2)');
Are there a way to add a second selector lt(6) or in some other way get the result i seek?