Ok, so I deduce that what you are asking is that the equipment series and model listboxes change their values dynamically, right?
The problem is that this all has to happen in the client, and PHP is a server-based scripting language. In order to be able to do this, you would have to store every equipment series and EVERY model in some sort of array that Javascript would have access to. That can get very tricky, and you theoretically could have thousands and thousands of models, right? So this isn't practical.
You could give the appearance of a single page by using IFrames, but then you run into compatibility issues with some browsers.
I would suggest you have a series of forms, perhaps accomplished with a popup window, that first asks for Manufacturer, then Equipment Series, then the Model, and when clicking the "FINISH" button, the values are returned to the original form which the user can then continue to fill out.