A Qcodo based CMS/ecommerce framework
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

5 lines
204 B

12 years ago
  1. function __resetListBox(strFormId, strControlId) {
  2. var objListBox = document.forms[strFormId].elements[strControlId];
  3. objListBox.selectedIndex = -1;
  4. if (objListBox.onchange)
  5. objListBox.onchange();
  6. };