Index: branches/LCSv2/views/default/submit.html
===================================================================
--- branches/LCSv2/views/default/submit.html	(revision 619)
+++ branches/LCSv2/views/default/submit.html	(revision 621)
@@ -66,5 +66,22 @@
 }
 </script>
-
+<script>
+// Handle a user click on a radio button for "existing incident"
+function radioclicked()
+{
+    var btngroup = document.getElementsByName('existing');
+    // Is the YES button checked?
+    if(btngroup[1].checked)
+    {
+        // Turn on display of combo box to select a closure id
+        document.getElementById("closureselect").style.display = "block";
+    }
+    else
+    {
+        // Turn off the combo box display
+        document.getElementById("closureselect").style.display = "none";
+    }
+}
+</script>
 <div id="main" role="main" class="mainflex">
     <div id="pageTitle" class="header"> Request Emergency Closure</div>
