jquery dropdown menu for textfield and values passed?

jquery dropdown menu for textfield and values passed?

I found there are many answers that jquery developer tend to use jquery autocomplete plugin
to obtain the DROPDOWN style on the textfield

That was nice if the Server give a responds of 1 type of values. (for example; only a Brand name type, or anything that only 1 type, in which the occurance may appeared more than once).

But how about when the returned (responded) values from the server is many types.
And they also occured many times.

I prefer to extract these values for these destination;
1) to take the values and make the dropdown menu on the textfield
2) to take the values and make the another html element that will hold in for that values.

Let's assume the responses are the json object of array;
Thus we shall iterate it in local (using jquery) later on once they're arrived.


 (i.e :  json array )
  { [name:"Honda","Toyota","Toshiba","Yamaha"], [id: "1","2","3","4"] }


That I mentioned above is that we assume we're taking in 2 types of responses; ID (s) and Name (s).
But here, I am not saying about "How to make the respond by the server".... no, no, no.
It just that, how we could extract those json values obtained from server, and make 'em extracted into many areas; (1st; drop down on textfield
2nd; another element. val() ) .... ? 

Ya, so.... how could we make it in jquery?