function selectAction() {
var url;
var theform = document.GoogleForm;

if (theform.searchType[0].checked == true) {
theform.action= '/sitesearch/search.php';

theform.searchType.disabled=true;

theform.submit();
}

else if (theform.searchType[1].checked ==true) {

url = 'http://carolinabrush.thomasnet.com/keyword/all-categories?'
    url = url + '&keyword=' + encodeURI(theform.query_string.value);
    url = url + '&key=all&keycateg=100&keyprod=&SchType=2'

theform.query_string.name='keyword';
theform.searchType.disabled=true;

document.location.href = url;
}

}