Hi,
To display sum value of two dropdown, you simply set Text property of label as
Dropdown1.Selected.Value+Dropdown2.Selected.Value
* Here, I assume names of drop down boxes are Dropdown1 and Dropdown2.
When user change selected item in each dropdown control, label text will also changes automatically.
Thanks,