There is no current CSS or XHTML specification that allows for what you want. (see update below)
If you need the functionality to start an ordered list (OL) at a specific point, you'll have to specify your doctype as HTML 4.01 Transitional; which is:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
With that doctype, it is valid to set a start attribute on an ordered list. Such as:
<ol start="6">
Alternatively, Array Studio has found a work-around that does what you want. It utilizes CSS's counter-reset and counter-increment functions. I highly recommend you take a look at that.
Update regarding HTML5
I wrote this answer in 2009, when HTML5 was just gaining traction. As Ms2ger says in his answer, the start attribute is no longer deprecated. You can use the answer I wrote above with HTML4.01 or HTML5, just not XHTML.