//JavaScript Document function nonUSCheck(sl) { if (sl[sl.selectedIndex].value == 'other') { var prompt = confirm("This schools program is not available to non-U.S. citizens. Click okay to request information from colleges and universities open to international students. If you are a U.S. citizen please click cancel to go back to the form. Thank you."); if (prompt == true) { window.location='../programs/featured_international.cap'; return false; } else { sl.selectedIndex = 0; } } return true; }