function inputFocus(obj, word){
	if ( obj.value == word ){
		obj.value = '';
	}
}

function inputBlur(obj, word){
	if ( obj.value == '' ){
		obj.value = word;
	}
}
function searchSubmit(obj, word){	
	return document.getElementById(obj).value == word ? false : true;
}

$(document).ready(function(){
  
   $("select#where_to_buy").bind('change',function(){
      window.location = $(this).attr('value');
   });
})