$('form#search input:radio').val(['place']);
※val(['place'])で初期設定で地名が選択されている。
<form id="search" action="#"> <fieldset> <legend>キーワード検索</legend> キーワード<input type="text" size="30" /> <input type="submit" value="検索" /><br /> <input type="radio" value="place" />地名 <input type="radio" value="station" />駅名 <input type="radio" value="work" />業種 </fieldest> </form>