function formHandler(){
var URL = document.form.site.options[document.form.site.selectedIndex].value;
window.location.href =URL;
}

document.write('<form name="form">');
document.write('<select name="site" size=1>');
document.write('<option value="">Go to....');

document.write('<option value="index.html">> Home');
document.write('<option value="About.html">> About Us');


document.write('<option value="a">....................................................... ');

document.write('<option value="Finance.html">> Financial Services:');
document.write('<option value="FC.html">..... Financial Consultancy');
document.write('<option value="CE.html">..... Credit Evaluation');
document.write('<option value="FS.html">..... Feasibility Studies');
document.write('<option value="IA.html">..... Investment Advisory');
document.write('<option value="CI.html">..... Company Incorporation');


document.write('<option value="a">....................................................... ');

document.write('<option value="IT.html">> I.T. Services:');
document.write('<option value="WS.html">..... Web Sites');
document.write('<option value="ECS.html">..... E-Commerce');
document.write('<option value="SS.html">..... Software Solutions');
document.write('<option value="HW.html">..... Hardware Solutions');

document.write('<option value="a">....................................................... ');

document.write('<option value="Training.html">> Training & Workshops:');
document.write('<option value="ITWS.html">..... IT Security Workshop');
document.write('<option value="FWS.html">..... Finance Workshops');


document.write('<option value="a">....................................................... ');

document.write('<option value="HR.html">> H.R. Services');


document.write('<option value="a">....................................................... ');

document.write('<option value="HR.html">> News:');
document.write('<option value="CNews.html">..... Corporate News');
document.write('<option value="ANews.html">..... Affiliate News');


document.write('<option value="a">....................................................... ');

document.write('<option value="CTC.html">> Contacts Us');



document.write('</select>');
document.write('<input type=button value="Go!" onClick="javascript:formHandler()">');
document.write('</form>');