function transfer_it(aSelect, bSelect, cSelect, aText, aTextarea)
{
var box1 = '', box2 = '', box3 = '', zipcode = '';
if (aSelect.selectedIndex != 0) //not default option
box1 = aSelect.options[aSelect.selectedIndex].text; //get displayed text
if (bSelect.selectedIndex != 0) //not default option
box2 = bSelect.options[bSelect.selectedIndex].text; //get displayed text
if (cSelect.selectedIndex != 0) //not default option
box3 = cSelect.options[cSelect.selectedIndex].value; //get displayed value
zipcode = aText.value; //get textfield
if (box1 != '')
aTextarea.value += ' ' + box1;
if (box2 != '')
aTextarea.value += ' ' + box2;
if (box3 != '')
aTextarea.value += ' ' + box3;
if (zipcode != '')
aTextarea.value += ' ' + zipcode;
}
