Hello, make one form for the combobox alone(you can still leave the rest of the form there, we just change the target and move the </form> tag later), assign a javascript onchange event to it to submit the form once the customer has been choosen (I guess the value of the combobox options will be some kind of customer unique id = uid). That form will point to itself basically, except that it now knows the uid of the previously choosen customer. In the form you have to do an if/else statement checking if the uid is there. if it is it will change the forms target and not set the </form> for the previous "little" form that only choose the customer. It also does not display the combobox anymore, but rather does a quick query to your Db to get the full customer details and displays them nicely formatted. Good luck. Andi