﻿function createSelect()
{
    var target=document.getElementById("custdropdownlist");
    
    var select=document.createElement("select");
    
    var lable=document.createElement("label");
    lable.setAttribute("id","lblcars");
    
    //set style for added element
    
    lable.style.display="block";
    lable.style.paddingBottom="3px";
    
    target.style.marginLeft="7px";
    target.style.paddingBottom="0px";
    target.style.color="#07519a";
    
    select.style.width="135px";
    select.style.height="20px";
    
    var lableText=document.createTextNode("More Cars:");
    lable.appendChild(lableText);
    target.appendChild(lable);
    
    var arrValue=["http://specials.uk.msn.com/fcom/may08/saabconvertible.aspx","http://specials.uk.msn.com/fcom/mar08/saabturbox.aspx","http://specials.uk.msn.com/fcom/feb08/saab9-3ttid.aspx","http://specials.uk.msn.com/fcom/sep07/saab9-3.aspx"];
    var arrText=["Saab 9-3 Convertible","Saab Turbo X","Saab 9-3 TTiD","Saab 9-3"];
    select.setAttribute("id","ddlFcomNav");
    select.appendChild(createOption("","-------MODEL-------"));
    for(var i=0,length=arrValue.length;i<length;i++)
    {
        select.appendChild(createOption(arrValue[i],arrText[i]));
    }
    
    target.appendChild(select);
    select.onchange=function()
    {
        var tempUrl=this.options[this.selectedIndex].value;
        if(tempUrl!="")
        {
            window.location.href=tempUrl;
        }
    };
}
            
function createOption(value,text)
{
    var option=document.createElement("option");
    var text=document.createTextNode(text);
    option.appendChild(text);
    option.setAttribute("value",value);
    return option;
}

createSelect();