How to create a select menu related to another select menu

How to create a select menu related to another select menu

I am currently studying jQuery but I came across a topic related to select menu. I studied how a select menu is styled by a code as the following:

  1. $('#colors').selectmenu({
    width : 300,
    change : function (event, ui) {
    // put your programming here
    }
    });

But I don't know how to add a second select menu with another set of options related to the original menu’s
selected option, and so on. Can any one help me by showing how this is done or at least refer me to a reference that does just this. I would very much appreciate it.