function onQuickCheckLoad(){
    replaceOptionsRent();
}

function replaceOptionsBuy(){    
    valueArray = [ "", "50000", "100000", "200000", "250000", "300000", "350000", "400000", "450000", "500000", "550000", "1000000" ];
    textArray = [ "&pound;0k", "&pound;50k", "&pound;100k", "&pound;200k", "&pound;250k", "&pound;300k", "&pound;350k", "&pound;400k", "&pound;450k", "&pound;500k", "&pound;550k", "&pound;1 million" ];
    loadList( document.getElementById('select_from'), valueArray, textArray );
    
    valueArray = [ "50000", "100000", "200000", "250000", "300000", "350000", "400000", "450000", "500000", "550000", "1000000", "" ];
    textArray = [ "&pound;50k", "&pound;100k", "&pound;200k", "&pound;250k", "&pound;300k", "&pound;350k", "&pound;400k", "&pound;450k", "&pound;500k", "&pound;550k", "&pound;1 million", "&pound;1 million+" ];
    loadList( document.getElementById('select_to'), valueArray, textArray );
}

function replaceOptionsRent(){
    valueArray = [ "", "100", "150", "200", "250", "300", "350", "400", "450", "500", "550", "600", "650", "700", "750" ];
    textArray = [ "&pound;0", "&pound;100", "&pound;150", "&pound;200", "&pound;250", "&pound;300", "&pound;350", "&pound;400", "&pound;450", "&pound;500", "&pound;550", "&pound;600","&pound;650","&pound;700","&pound;750" ];
    loadList( document.getElementById('select_from'), valueArray, textArray );
    
    valueArray = [ "200", "250", "300", "350", "400", "450", "500", "550", "600", "650", "700", "750", "1000", "1500", "" ];
    textArray = [ "&pound;200", "&pound;250", "&pound;300", "&pound;350", "&pound;400", "&pound;450", "&pound;500", "&pound;550", "&pound;600","&pound;650","&pound;700","&pound;750","&pound;1000","&pound;1500", "&pound;1500+" ];
    loadList( document.getElementById('select_to'), valueArray, textArray );
}

function loadList( list, valueArray, textArray ){
    list.options.length = 0;
    for ( i = 0; i < valueArray.length; i++ ){
        list.options[i] = new Option( textArray[i], valueArray[i] );
        list.options[i].innerHTML = textArray[i];
    }
    list.value = "";
}