function select1_onChange() { if (lawForm.getFormValue("select1") == "P") { lawForm.setFormValue("label14", "Account Number"); } if (lawForm.getFormValue("select1") == "R") { lawForm.setFormValue("label14", "City or Address 5"); } } This does not work. It does not seem to get into the function even. I tried removing all the code from the function and just put an alert in there, but it would not alert when I selected different options in the list box. I assume I have to tie this function to the listbox somehow, but I do not know how. Thank you!