function selectSite(domain)
{
    var items = Array.from($('site_select_id').options);

    items.each(function(s, index) {
        if ( s.value == domain )
        {
            $('site_select_id').selectedIndex = index;

            $('submit_form_btn').focus();
            $('url').focus();
        }
    });

}

function addSiteRequest()
{
    new Ajax.Request("/ajax.php", {
      method: 'post',
      parameters: { url: $F('url'), title: $F('title'), icq: $F('icq'), email: $F('email'), name: $F('name'), site_select_id: $F('site_select_id'), captcha_code: $F('captcha_code') },
      onSuccess: function(transport) {
        /*var notice = $('notice');
        if (transport.responseText.match(/href="http:\/\/prototypejs.org/))
          notice.update('Yeah! You are in the Top 10!').setStyle({ background: '#dfd' });
        else
          notice.update('Damn! You are beyond #10...').setStyle({ background: '#fdd' });*/
        $('message').innerHTML = transport.responseText;
        $('captcha').src = '/captcha.php?' + Math.random();
        $('captcha_code').value ="";
      }
    });
}