When the first div is floated to the left, the second div is positioned as if it does not exist (although any text within the second div will flow around the floated div). See the CSS2 specification for more information about the behaviour of floated elements.
To get the second div to float next to the first div you can add float: left to the second div.
Alternatively, if the width of the first div is known, you can add left margin to the second div.
