// JavaScript Document

function changeActioncred() {


    if (document.companyform.company.options[document.companyform.company.selectedIndex].value == "not")

    {alert("Please select company from the list"); }

    else

    { document.companyform.action = document.companyform.company.options[document.companyform.company.selectedIndex].value; }
    
    
}